home *** CD-ROM | disk | FTP | other *** search
/ MacHome 2001 January / MacHome Magazine Demo Disc January 2001.iso / pc / Software / Applications / CESLab3.0b0.sea / CESLab3.0b0 / CESLab Scripts / Preferences / Preferences
Encoding:
Text File  |  2000-08-23  |  1.4 KB  |  54 lines  |  [TEXT/ttxt]

  1. // Copyright (C) 1995-2000 CESI.  All rights reserved.
  2.  
  3. // Determines if backgrounds will default to black in new
  4. // instrument windows.
  5.  
  6. appvar DefaultBackgroundsToBlack = True;
  7.  
  8. // The colors used to represent activation phases.
  9.  
  10. appvar ActivationPhase0Red = 1;
  11. appvar ActivationPhase0Green = 0;
  12. appvar ActivationPhase0Blue = 1;
  13.  
  14. appvar ActivationPhase1Red = 1;
  15. appvar ActivationPhase1Green = 0;
  16. appvar ActivationPhase1Blue = .35;
  17.  
  18. appvar ActivationPhase2Red = 1;
  19. appvar ActivationPhase2Green = .3;
  20. appvar ActivationPhase2Blue = 0;
  21.  
  22. appvar ActivationPhase3ARPRed = 1;
  23. appvar ActivationPhase3ARPGreen = .7;
  24. appvar ActivationPhase3ARPBlue = 0;
  25.  
  26. appvar ActivationPhase3RRPRed = 1;
  27. appvar ActivationPhase3RRPGreen = 1;
  28. appvar ActivationPhase3RRPBlue = 0;
  29.  
  30. appvar ActivationPhase4Red = 0;
  31. appvar ActivationPhase4Green = 1;
  32. appvar ActivationPhase4Blue = 0;
  33.  
  34. // Grid colors used for ECG and HDG graphs on white
  35. // and black backgrounds.
  36.  
  37. appvar GraphGridOnWhiteRed        = .75;
  38. appvar GraphGridOnWhiteGreen    = 1;
  39. appvar GraphGridOnWhiteBlue        = .75;
  40.  
  41. appvar GraphGridOnBlackRed        = .15;
  42. appvar GraphGridOnBlackGreen    = .2;
  43. appvar GraphGridOnBlackBlue        = .15;
  44.  
  45. // The initial log window position (in pixels).
  46.  
  47. appvar LogWindowHor = 10;
  48. appvar LogWindowVert = 60;
  49.  
  50. // Horizontal offset to be used for new windows (in pixels).  This may
  51. // be used to bring up new windows on an alternate monitor.
  52.  
  53. appvar NewWindowHorOffset = 10;
  54.